-
Notifications
You must be signed in to change notification settings - Fork 56
Rework seed confirmation counting mechanism #1101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
stephenswat
wants to merge
1
commit into
acts-project:main
from
stephenswat:refactor/seed_confirmation_weighty
Closed
Rework seed confirmation counting mechanism #1101
stephenswat
wants to merge
1
commit into
acts-project:main
from
stephenswat:refactor/seed_confirmation_weighty
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Member
Author
|
Depends on #1097. |
16cd2fd to
0adad8c
Compare
Member
Author
Performance summaryHere is a summary of the performance effects of this PR: GraphicalTabular
Important All metrics in this report are given as reciprocal throughput, not as wallclock runtime. Note This is an automated message produced on the explicit request of a human being. |
1170234 to
248ced1
Compare
Currently, we could seed confirmations and add them to the weight of the seed. We add a large weight, 200, which causes several problems with the seeding code. Most prominently, our weights before the confirmation are in the range [-10, 0] which means that adding 200 brings you in the range [190, 200] and the minimum weight is 200. Thus, you are very coarsely cutting seeds on a very high minimum weight. Expressing the confirmations using an integer counting system makes us more robust against the aforementioned.
248ced1 to
996af6b
Compare
Member
Author
|
Member
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.











Currently, we could seed confirmations and add them to the weight of the seed. We add a large weight, 200, which causes several problems with the seeding code. Most prominently, our weights before the confirmation are in the range$[-10, 0]$ which means that adding 200 brings you in the range $[190, 200]$ and the minimum weight is 200. Thus, you are very coarsely cutting seeds on a very high minimum weight. Expressing the confirmations using an integer counting system makes us more robust against the aforementioned.